home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 44 / Amiga Format CD44 (1999-08-26)(Future Publishing)(GB)(Track 1 of 3)[!][issue 1999-10].iso / -in_the_mag- / basics / amos / intuiextend20b.lha / distribution / exemples / OpenWindow.asc < prev    next >
Text File  |  1980-03-04  |  842b  |  34 lines

  1. '**************************************
  2. '                                     *
  3. '     IntuiExtend.Lib 2.0/@1995-98    *
  4. '                                     *
  5. '          by CIERP Philippe.         *
  6. '                                     *
  7. '          from AMIGAzette 83         *
  8. '                                     *
  9. '**************************************
  10. '
  11. ' Command
  12. '  -Wb Wind Open 
  13. '  -Wb Wind Base 
  14. '  -Wb Wind Limit
  15. '  -Str Store
  16. '  -Str Free 
  17. '  -Wb Wind Title
  18. '
  19. Amos To Back 
  20. '
  21. Wb Wind Open 0 To 50,30,300,100,1+2+4+8
  22. W=Wb Wind Base : R=Wb Wind Rastport(W)
  23. A=Str Store("<- Cliqué le CloseGadget...")
  24. B=Str Store("CIERP Philippe presente l'extention Intuition (Shareware) AMOS/AMOSPro")
  25. Wb Wind Title W To A,B
  26. Wb Wind Limit W To 50,50,500,200
  27. '
  28. While Get Msg(W)<>$200 : Wend 
  29. '
  30. Wb Wind Close W
  31. Str Free A
  32. Str Free B
  33. Amos To Front 
  34.